Skip to content

Instantly share code, notes, and snippets.

@gabrieldechichi
gabrieldechichi / demo_ecs_boids.c
Created January 8, 2026 19:48
demo_ecs_boids.c
#include "context.h"
#include "lib/thread_context.h"
#include "lib/typedefs.h"
#include "lib/string_builder.h"
#include "os/os.h"
#include "lib/math.h"
#include "lib/hash.h"
#include "lib/random.h"
#include "gpu_backend.h"
#include "renderer.h"
@willbicks
willbicks / sops-secrets-operator-example.md
Last active January 10, 2026 23:14
Encrypting Kubernetes Secrets with Age and SOPS on k3s

Encrypting Kubernetes Secrets with Age and SOPS on k3s

SOPS is a handy utility for encrypting sensitive content within files while making it easy to edit and track them with standard developer tools (git, diff, vi, etc.). Using the sops-secret-operator, you can deploy encrypted Kubernetes secrets as SopsSecret custom resources, which are decrypted by the operator and made available as standard Secrets for general consumption. This allows secrets to be tracked securely in version control, deployed with standard CI/CD tools, and edited securely by developers.

Comparison to Alternatives

KSOPS

KSOPS is a Kustomize plugin that supports decrypting SOPS files and applying them to your cluster.

@0xdevalias
0xdevalias / _deobfuscating-unminifying-obfuscated-web-app-code.md
Last active January 10, 2026 23:12
Some notes and tools for reverse engineering / deobfuscating / unminifying obfuscated web app code
@n1snt
n1snt / Oh my ZSH with zsh-autosuggestions zsh-syntax-highlighting zsh-fast-syntax-highlighting and zsh-autocomplete.md
Last active January 10, 2026 23:10
Oh my ZSH with zsh-autosuggestions zsh-syntax-highlighting zsh-fast-syntax-highlighting and zsh-autocomplete.md

Oh my zsh.

Oh My Zsh

Install ZSH.

sudo apt install zsh-autosuggestions zsh-syntax-highlighting zsh

Install Oh my ZSH.

We can't make this file beautiful and searchable because it's too large.
Ort;Plz;Bundesland
Aach;54298;Rheinland-Pfalz
Aach;78267;Baden-Württemberg
Aachen;52062;Nordrhein-Westfalen
Aachen;52064;Nordrhein-Westfalen
Aachen;52066;Nordrhein-Westfalen
Aachen;52068;Nordrhein-Westfalen
Aachen;52070;Nordrhein-Westfalen
Aachen;52072;Nordrhein-Westfalen
Aachen;52074;Nordrhein-Westfalen
@scramblr
scramblr / browser.devtools.cheatsheet.md
Last active January 10, 2026 22:51
Browser Cheat Sheet For Devtools and Other "Advanced Developer" Functionality (Chrome, Firefox, and More)

Web Browser Cheat Sheets by SCRAMBLR

Document Last Updated: 12/27/2025

Chrome & Chromium-Based Browsers (Edge, Opera, Brave, Vivaldi)

1.) Ways To Filter Out Specific Types of Files and Extensions From The Network Tab (Like Images, Videos, Etc.)

This is especially useful for when you want to scroll down the items under "Network" tab and keep losing focus whenever an image or other binary-style file comes up, and the cursor moves over to the hex dump..
  • Method 1: Use this regex for the Network Tab's Filter: /-*.svg$/ /-*.png$/ /-*.jpg$/ /-*.ico$/ /-*.gif$/ /-*.woff[2]$/
@ericdouglas
ericdouglas / keyboard.md
Last active January 10, 2026 22:50
Cedilla under C (ç) in 'US international' keyboard layout in Linux

Add English (US, alt. intl.)

It's because the cedilla module isn't loaded by default when the locale is set to en, so you have to change the configuration files for gtk to add them:

  1. Edit configuration files:
sudo vim /usr/lib/x86_64-linux-gnu/gtk-3.0/3.0.0/immodules.cache

sudo vim /usr/lib/x86_64-linux-gnu/gtk-2.0/2.10.0/immodules.cache
@mathieucarbou
mathieucarbou / README.md
Created August 29, 2023 10:21
Home Assistant + RTE Tempo + Shelly

Home Assistant + RTE Tempo + Shelly

In global config:

homeassistant:
  packages: !include_dir_named packages
  1. put tempo.yaml files in config/packages folder
@fnky
fnky / ANSI.md
Last active January 10, 2026 22:42
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1B
  • Decimal: 27